EasyDB: Simple SQL Persistence for Python
Updated: 2012-03-31 18:51:46
: Coderholic best enjoyed with coffee blog about subscribe twitter EasyDB : Simple SQL Persistence for Python Python provides some great tools for simple data persistence . For key value storage there's anydb for when you have only string values , and shelve for when you've got more complex values eg . lists or objects Sometimes key value persistence doesn't cut it . For example , you might want to sort , filter or query your data efficiently . In those situations you can always use Python's built in support for SQLite a serverless self-contained SQL database engine . With SQLite you've got to worry about database schemas , connections and transactions though . A far cry from simple persistence Enter EasyDB essentially a really simple SQLite wrapper for that saves you from having to worry